home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form Form1
- Caption = "Style Progress Bar's VB4 sample"
- ClientHeight = 4332
- ClientLeft = 912
- ClientTop = 1416
- ClientWidth = 5772
- Height = 4716
- Left = 864
- LinkTopic = "Form1"
- ScaleHeight = 4332
- ScaleWidth = 5772
- Top = 1080
- Width = 5868
- Begin VB.Timer Timer1
- Interval = 500
- Left = 5400
- Top = 120
- End
- Begin STYLEPROGRESSBARLibCtl.SPBar SPBar1
- Height = 480
- Left = 3240
- OleObjectBlob = "vb4sampl.frx":0000
- TabIndex = 0
- Top = 3720
- Width = 2400
- End
- Attribute VB_Name = "Form1"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Private Sub Timer1_Timer()
- If SPBar1.Value >= SPBar1.Max Then
- SPBar1.Value = SPBar1.Min
- End If
- SPBar1.Value = SPBar1.Value + 10
- End Sub
-